All Packages Class Hierarchy This Package Previous Next Index
Class quicktime.std.qtcomponents.TimeCodeInfo
java.lang.Object
|
+----quicktime.std.qtcomponents.TimeCodeInfo
- public final class TimeCodeInfo
- extends Object
The TimeCodeInfo class represents time code as frame count or as HH:MM:SS:FF.
If frame count is used in construction, then TimeCodeTime time will be null.
If TimeCodeTime time is used in construction, then frame count will be 0.
It is an information class.
-
counter
- Represents the total number of frames of the timecode.
-
definition
- Used to indicate the timecode formatting information.
-
frameNumber
- Used to indicate the current frame number by the specified time and definition.
-
time
- Represents time of the timecode as HH:MM:SS:FF.
-
userData
- Represents the timecode data.
-
TimeCodeInfo()
- Used when returning information from TimeCoder calls.
-
TimeCodeInfo(int, TimeCodeDef, int, QTHandleRef)
- Creates a TimeCodeInfo object using frame count.
-
TimeCodeInfo(int, TimeCodeDef, TimeCodeTime, QTHandleRef)
- Creates a TimeCodeDef object which has no initial settings.
-
toString()
- String representation of this class.
frameNumber
public int frameNumber
- Used to indicate the current frame number by the specified time and definition.
definition
public TimeCodeDef definition
- Used to indicate the timecode formatting information.
time
public TimeCodeTime time
- Represents time of the timecode as HH:MM:SS:FF.
counter
public int counter
- Represents the total number of frames of the timecode.
userData
public QTHandleRef userData
- Represents the timecode data.
TimeCodeInfo
public TimeCodeInfo()
- Used when returning information from TimeCoder calls.
TimeCodeInfo
public TimeCodeInfo(int frameNumber,
TimeCodeDef definition,
TimeCodeTime time,
QTHandleRef userData)
- Creates a TimeCodeDef object which has no initial settings.
The counter instance variable is 0.
- Parameters:
- frameNumber - Current frame number.
- definition - Object with flags and other time code defining variables.
- time - TimeCode object using hours,minutes,seconds.
- userData - Handle to the data.
TimeCodeInfo
public TimeCodeInfo(int frameNumber,
TimeCodeDef definition,
int counter,
QTHandleRef userData)
- Creates a TimeCodeInfo object using frame count.
The time nstance variable is null.
- Parameters:
- frameNumber - Current frame number.
- definition - Object with flags and other time code defining variables.
- counter - Number of frames
- userData - Handle to the data.
toString
public String toString()
- String representation of this class.
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index